home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / connec1r / form2.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-07-14  |  1.6 KB  |  55 lines

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    BackColor       =   &H000080FF&
  4.    Caption         =   "Just A Few Things"
  5.    ClientHeight    =   3195
  6.    ClientLeft      =   4140
  7.    ClientTop       =   3270
  8.    ClientWidth     =   4680
  9.    FillColor       =   &H000080FF&
  10.    ForeColor       =   &H000080FF&
  11.    LinkTopic       =   "Form2"
  12.    ScaleHeight     =   3195
  13.    ScaleWidth      =   4680
  14.    Begin VB.CommandButton Command2 
  15.       Caption         =   "Goto Form3"
  16.       Height          =   375
  17.       Left            =   1320
  18.       TabIndex        =   2
  19.       Top             =   1800
  20.       Width           =   1935
  21.    End
  22.    Begin VB.CommandButton Command1 
  23.       Caption         =   "Click Here For a Message"
  24.       Height          =   495
  25.       Left            =   1440
  26.       TabIndex        =   1
  27.       Top             =   480
  28.       Width           =   1575
  29.    End
  30.    Begin VB.TextBox Text1 
  31.       Height          =   285
  32.       Left            =   840
  33.       TabIndex        =   0
  34.       Top             =   120
  35.       Width           =   2775
  36.    End
  37.    Begin VB.Line Line1 
  38.       BorderColor     =   &H0000C0C0&
  39.       X1              =   0
  40.       X2              =   4680
  41.       Y1              =   1200
  42.       Y2              =   1200
  43.    End
  44. Attribute VB_Name = "Form2"
  45. Attribute VB_GlobalNameSpace = False
  46. Attribute VB_Creatable = False
  47. Attribute VB_PredeclaredId = True
  48. Attribute VB_Exposed = False
  49. Private Sub Command1_Click()
  50. Text1.Text = "Don 't Tell your friends the password!!"
  51. End Sub
  52. Private Sub Command2_Click()
  53. Form3.Show
  54. End Sub
  55.